'宣言
Public Delegate Sub AsyncOperationWithProgressCompletedHandler
(Of TResult,TProgress)( _
ByVal asyncInfo As IAsyncOperationWithProgress(Of TResult,TProgress), _
ByVal asyncStatus As AsyncStatus _
)
public delegate void AsyncOperationWithProgressCompletedHandler<TResult,TProgress>( IAsyncOperationWithProgress<TResult,TProgress> asyncInfo, AsyncStatus asyncStatus )
パラメータ
- asyncInfo
- The asynchronous operation.
- asyncStatus
- The status of asynchronous action.
型パラメータ
- TResult
- TProgress
- The type of the progress data.